'Declaration Public Overloads Shared Function FilterAsync(Of T As Class)( _ ByVal dataCollection As IDataCollection(Of T), _ ByVal predicate As Func(Of Object,Boolean) _ ) As Task
public static Task FilterAsync<T>( IDataCollection<T> dataCollection, Func<object,bool> predicate ) where T: class
Parameters
- dataCollection
- The data collection.
- predicate
- The predicate which will filter the collection.
Type Parameters
- T